home *** CD-ROM | disk | FTP | other *** search
/ Long Ban 3 / Long Ban 3 - Disc 1.iso / mac / DISK1 / DATA / mov.Dxr / 00043.ls < prev    next >
Encoding:
Text File  |  1997-03-24  |  1.1 KB  |  53 lines

  1. on exitFrame
  2.   if the movieTime of sprite 22 < the duration of member the memberNum of sprite 22 then
  3.     go(the frame)
  4.   else
  5.     go("s3")
  6.     set the movieRate of sprite 22 to 1
  7.     set the volume of sprite 22 to 255
  8.   end if
  9. end
  10.  
  11. on mouseDown
  12.   set sp to the clickOn
  13.   case sp of
  14.     2:
  15.       go("s1")
  16.     3:
  17.       go("s2")
  18.     4:
  19.       go("s3")
  20.     5:
  21.       go("s4")
  22.     6:
  23.       go("s5")
  24.     7:
  25.       go("s6")
  26.     12:
  27.       set the visible of sprite 12 to 0
  28.       set the visible of sprite 22 to 0
  29.       go(#next)
  30.       set the visible of sprite 22 to 1
  31.       set the visible of sprite 12 to 1
  32.     13:
  33.       set the visible of sprite 8 to 1
  34.       set the visible of sprite 9 to 1
  35.       set the movieRate of sprite 22 to 0
  36.       buttonaction(sp)
  37.       go(1, "menu")
  38.     14:
  39.       set the visible of sprite 8 to 1
  40.       set the visible of sprite 9 to 1
  41.       set the movieRate of sprite 22 to 0
  42.       buttonaction(sp)
  43.       quit()
  44.     15:
  45.       set the visible of sprite 15 to 0
  46.       set the movieRate of sprite 22 to 0
  47.       set the movieTime of sprite 22 to 0
  48.       buttonaction(sp)
  49.       go(1)
  50.       set the visible of sprite 15 to 1
  51.   end case
  52. end
  53.